diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/b-rfq/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/b-rfq/page.tsx | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/app/[lng]/evcp/(evcp)/b-rfq/page.tsx b/app/[lng]/evcp/(evcp)/b-rfq/page.tsx index a66d7b58..4f80211b 100644 --- a/app/[lng]/evcp/(evcp)/b-rfq/page.tsx +++ b/app/[lng]/evcp/(evcp)/b-rfq/page.tsx @@ -7,6 +7,7 @@ import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" import { searchParamsRFQDashboardCache } from "@/lib/b-rfq/validations" import { getRFQDashboard } from "@/lib/b-rfq/service" import { RFQDashboardTable } from "@/lib/b-rfq/summary-table/summary-rfq-table" +import { InformationButton } from "@/components/information/information-button" export const metadata: Metadata = { title: "견적 RFQ", @@ -53,9 +54,12 @@ export default async function PQReviewPage(props: PQReviewPageProps) { <div className="flex items-center justify-between space-y-2"> <div className="flex items-center justify-between space-y-2"> <div> - <h2 className="text-2xl font-bold tracking-tight"> - 견적 RFQ - </h2> + <div className="flex items-center gap-2"> + <h2 className="text-2xl font-bold tracking-tight"> + 견적 RFQ + </h2> + <InformationButton pageCode="evcp/b-rfq" /> + </div> </div> </div> </div> |
